von Zeynek and Mencki"s test - traducción al
Diclib.com
Diccionario en línea

von Zeynek and Mencki"s test - traducción al

Test and test and set; Test and Test-and-set

regel         
GERMAN BOTANIST (1815–1892)
Edward August von Regel; Edward von Regel; Eduard von Regel; Édouard August von Regel; Regel; Eduard Regel
‎ حَيْض‎
regel         
GERMAN BOTANIST (1815–1892)
Edward August von Regel; Edward von Regel; Eduard von Regel; Édouard August von Regel; Regel; Eduard Regel
حَيْض
Lindau-Von Hippel disease         
  • The regulation of HIF1α by pVHL. Under normal oxygen levels, HIF1α binds pVHL through 2 hydroxylated proline residues and is polyubiquitinated by pVHL. This leads to its degradation via the proteasome. During hypoxia, the proline residues are not hydroxylated and pVHL cannot bind. HIF1α causes the transcription of genes that contain the hypoxia response element. In VHL disease, genetic mutations cause alterations to the pVHL protein, usually to the HIF1α binding site.
  • Original Von Hippel's description of disease
  • Typical distribution of hemangioblastomas in Von Hippel–Lindau disease.
  • [[Slit lamp]] photograph showing [[retinal detachment]] in Von Hippel–Lindau disease
A RARE GENETIC DISORDER CHARACTERIZED BY VISCERAL CYSTS AND BENIGN TUMORS IN MULTIPLE ORGAN SYSTEMS WITH POTENTIAL FOR SUBSEQUENT MALIGNANT CHANGE.
Von Hippel-Lindau Disease; Von Hippel-Lindau syndrome; VHL syndrome; VHL disease; Hippel-lindau disease; Cerebelloretinal Angiomatosis, familial; Angiomatosis retinae; Von Hippel-Lindau; Von Hippel Lindau; Von Hippel Lindau syndrome; Vhld; Von Hippel–Lindau syndrome; Von Hippel-Lindau disease; Von Hippel – Lindau syndrome; Angiomatosis retinate; Lindau-von Hippel disease; Lindau’s disease; Lindau's disease; Von Hippel-Lindau's disease; Von Hippel – Lindau disease; Von Hippel - Lindau syndrome; Von Hippel - Lindau disease; Von Hippel–Lindau Disease; Von Hippel–Lindau
داءُ لينداو - فون هيبل

Definición

test case
(test cases)
A test case is a legal case which becomes an example for deciding other similar cases.
N-COUNT

Wikipedia

Test and test-and-set

In computer architecture, the test-and-set CPU instruction (or instruction sequence) is designed to implement mutual exclusion in multiprocessor environments. Although a correct lock can be implemented with test-and-set, the test and test-and-set optimization lowers resource contention caused by bus locking, especially cache coherency protocol overhead on contended locks.

Given a lock:

boolean locked := false // shared lock variable

the entry protocol is:

procedure EnterCritical() {
  do {
    while ( locked == true )
         skip // spin using normal instructions until the lock is free
  } while ( TestAndSet(locked) == true ) // attempt actual atomic locking using the test-and-set instruction
}

and the exit protocol is:

procedure ExitCritical() {
  locked := false
}

The difference to the simple test-and-set protocol is the additional spin-loop (the test in test and test-and-set) at the start of the entry protocol, which utilizes ordinary load instructions. The load in this loop executes with less overhead compared to an atomic operation (resp. a load-exclusive instruction). E.g., on a system utilizing the MESI cache coherency protocol, the cache line being loaded is moved to the Shared state, whereas a test-and-set instruction or a load-exclusive instruction moves it into the Exclusive state.

This is particularly advantageous if multiple processors are contending for the same lock: whereas an atomic instruction or load-exclusive instruction requires a coherency-protocol transaction to give that processor exclusive access to the cache line (causing that line to ping-pong between the involved processors), ordinary loads on a line in Shared state require no protocol transactions at all: processors spinning in the inner loop operate purely locally.

Cache-coherency protocol transactions are used only in the outer loop, after the initial check has ascertained that they have a reasonable likelihood of success.

If the programming language used supports short-circuit evaluation, the entry protocol could be implemented as:

 procedure EnterCritical() {
   while ( locked == true or TestAndSet(locked) == true )
     skip // spin until locked
 }